InStrRev
Definition:
InStrRev(string1, string2)
Description:
Check for the first occurrence of one string within another string, starting from the end of the searched string.
Platforms:
All
Parameters:
string1 - required
The string to be searched.
string2 - required
The string to search for.
Returns:
0
string1 is empty, "", or Null OR string2 not found.
>0
Integer indicating the position of the start of string2 within string1 – where first character of string1 is position 1.
Notes:
Whether or not the search is case-sensitive depends upon the setting of the Case Sensitive Script Property specified in the Project Properties. If set to True calls to InStrRev will be case-sensitive, if set to False they will be case-insensitive.